home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH03_1A.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  280b  |  25 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    for(index = 0 ; index < 10 ; index = index + 1)
  6.       printf("John Q. Doe\n");
  7. }
  8.  
  9.  
  10.  
  11. /* Result of execution
  12.  
  13. John Q. Doe
  14. John Q. Doe
  15. John Q. Doe
  16. John Q. Doe
  17. John Q. Doe
  18. John Q. Doe
  19. John Q. Doe
  20. John Q. Doe
  21. John Q. Doe
  22. John Q. Doe
  23.  
  24. */
  25.